crypto/tls.clientHelloMsg.supportedSignatureAlgorithmsCert (field)

12 uses

	crypto/tls (current package)
		handshake_messages.go#L85: 	supportedSignatureAlgorithmsCert []SignatureScheme
		handshake_messages.go#L219: 	if len(m.supportedSignatureAlgorithmsCert) > 0 {
		handshake_messages.go#L227: 					for _, sigAlgo := range m.supportedSignatureAlgorithmsCert {
		handshake_messages.go#L560: 				m.supportedSignatureAlgorithmsCert = append(
		handshake_messages.go#L561: 					m.supportedSignatureAlgorithmsCert, SignatureScheme(sigAndAlg))
		handshake_messages.go#L701: 		supportedSignatureAlgorithmsCert: slices.Clone(m.supportedSignatureAlgorithmsCert),
		handshake_server_tls13.go#L677: 		len(ch.supportedSignatureAlgorithmsCert) != len(ch1.supportedSignatureAlgorithmsCert) ||
		handshake_server_tls13.go#L701: 	for i := range ch.supportedSignatureAlgorithmsCert {
		handshake_server_tls13.go#L702: 		if ch.supportedSignatureAlgorithmsCert[i] != ch1.supportedSignatureAlgorithmsCert[i] {